@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700&display=swap');
*{
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}
body{
  background: #8769ac;
}
nav{
  background: #f6f0ff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 100px;



  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  z-index: 1;
  margin-bottom: 20px;
  border-bottom: 1px solid silver;
}
nav .logo{
  color: #b383ff;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -1px;
}
nav .nav-items{
  display: flex;
  flex: 1;
  padding: 0 0 0 40px;
}


nav .nav-items li{
  list-style: none;
  padding: 0 15px;
  position: relative  ;
}
nav .nav-items li a{
  color: #471e7c;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}
nav .nav-items li a:hover{
  color: #7715fe;
}
nav form{
  display: flex;
  height: 40px;
  padding: 2px;
  background: #1e232b;
  min-width: 18%!important;
  border-radius: 2px;
  border: 1px solid rgba(155,155,155,0.2);
}
nav form .search-data{
  width: 100%;
  height: 100%;
  padding: 0 10px;
  color: #fff;
  font-size: 17px;
  border: none;
  font-weight: 500;
  background: none;
}
nav form button{
  padding: 0 15px;
  color: #fff;
  font-size: 17px;
  background: #471e7c;
  border: none;
  border-radius: 2px;
  cursor: pointer;
}
nav form button:hover{
  background: #7715fe;
}
nav .menu-icon,
nav .cancel-icon,
nav .search-icon{
  width: 40px;
  text-align: center;
  margin: 0 50px;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  display: none;
}
nav .menu-icon span,
nav .cancel-icon,
nav .search-icon{
  display: none;
}
@media (max-width: 1245px) {
  nav{
    padding: 0 50px;
  }
}
@media (max-width: 1140px){
  nav{
    padding: 0px;
  }
  nav .logo{
    flex: 2;
    text-align: center;
  }
  nav .nav-items{
    position: fixed;
    z-index: 99;
    top: 70px;
    width: 100%;
    left: -100%;
    height: 100%;
    padding: 10px 50px 0 50px;
    text-align: center;
    background: #14181f;
    display: inline-block;
    transition: left 0.3s ease;
  }
  nav .nav-items.active{
    left: 0px;
  }
  nav .nav-items li{
    line-height: 40px;
    margin: 30px 0;
  }
  nav .nav-items li a{
    font-size: 20px;
  }
  nav form{
    position: absolute;
    top: 80px;
    right: 50px;
    opacity: 0;
    pointer-events: none;
    transition: top 0.3s ease, opacity 0.1s ease;
  }
  nav form.active{
    top: 95px;
    opacity: 1;
    pointer-events: auto;
  }
  nav form:before{
    position: absolute;
    content: "";
    top: -13px;
    right: 0px;
    width: 0;
    height: 0;
    z-index: -1;
    border: 10px solid transparent;
    border-bottom-color: #1e232b;
    margin: -20px 0 0;
  }
  nav form:after{
    position: absolute;
    content: '';
    height: 60px;
    padding: 2px;
    background: #1e232b;
    border-radius: 2px;
    min-width: calc(100% + 20px);
    z-index: -2;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  nav .menu-icon{
    display: block;
  }
  nav .search-icon,
  nav .menu-icon span{
    display: block;
  }
  nav .menu-icon span.hide,
  nav .search-icon.hide{
    display: none;
  }
  nav .cancel-icon.show{
    display: block;
  }
}

nav .logo.space{
  color: red;
  padding: 0 5px 0 0;
}
@media (max-width: 980px){
  nav .menu-icon,
  nav .cancel-icon,
  nav .search-icon{
    margin: 0 20px;
  }
  nav form{
    right: 30px;
  }
}
@media (max-width: 350px){
  nav .menu-icon,
  nav .cancel-icon,
  nav .search-icon{
    margin: 0 10px;
    font-size: 16px;
  }
}

.nav-items li:hover .dropdown-menu {
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  
}

.nav-items li:hover .dropdown-menu ul {
  display: block !important;
  margin: 20px 10px ;
  padding: 0 !important;
  text-align: center;
}

.dropdown-menu ul li {
  width: 170px;
  padding: 10px ;
}

.dropdown-menu {
  display: none;
  background: #f6f0ff;
  color: #7489C6;
  border: .5px solid grey ;
  border-radius: 5px;
}


nav label{
  line-height: 85px;
  padding: 0 80px;
  font-size: 50px;
  color: #0d0d0d;
  font-family: 'Montserrat', sans-serif;
}
nav span{
  color: red;
}


/* @import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700&display=swap');
*{
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}
body{
  background: #8769ac;
}
nav{
  background: #f6f0ff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 100px;



  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  z-index: 1;
  margin-bottom: 20px;
  border-bottom: 1px solid silver;
}
nav .logo{
  color: #b383ff;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -1px;
}
nav .nav-items{
  display: flex;
  flex: 1;
  padding: 0 0 0 40px;
}


nav .nav-items li{
  list-style: none;
  padding: 0 15px;
  position: relative;
}
nav .nav-items li a{
  color: #471e7c;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}
nav .nav-items li a:hover{
  color: #7715fe;
}

nav span {
  color: #471e7c;
}
nav form{
  display: flex;
  height: 40px;
  padding: 2px;
  background: #1e232b;
  min-width: 18%!important;
  border-radius: 2px;
  border: 1px solid rgba(155,155,155,0.2);
}
nav form .search-data{
  width: 100%;
  height: 100%;
  padding: 0 10px;
  color: #fff;
  font-size: 17px;
  border: none;
  font-weight: 500;
  background: none;
}
nav form button{
  padding: 0 15px;
  color: #fff;
  font-size: 17px;
  background: #471e7c;
  border: none;
  border-radius: 2px;
  cursor: pointer;
}
nav form button:hover{
  background: #7715fe;
}
nav .menu-icon,
nav .cancel-icon,
nav .search-icon{
  width: 40px;
  text-align: center;
  margin: 0 50px;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  display: none;
}
nav .menu-icon span,
nav .cancel-icon,
nav .search-icon{
  display: none;
}
@media (max-width: 1245px) {
  nav{
    padding: 0 50px;
  }
}
@media (max-width: 1440px){
  nav{
    padding: 0px;
  }
  nav .logo{
    flex: 2;
    text-align: center;
  }
  nav .nav-items{
    position: fixed;
    z-index: 99;
    top: 70px;
    width: 100%;
    left: -100%;
    height: 100%;
    padding: 10px 50px 0 50px;
    text-align: center;
    background: #14181f;
    display: inline-block;
    transition: left 0.3s ease;
  }
  nav .nav-items.active{
    left: 0px;
  }
  nav .nav-items li{
    line-height: 40px;
    margin: 30px 0;
  }
  nav .nav-items li a{
    font-size: 20px;
  }
  nav form{
    position: absolute;
    top: 80px;
    right: 50px;
    opacity: 0;
    pointer-events: none;
    transition: top 0.3s ease, opacity 0.1s ease;
  }
  nav form.active{
    top: 95px;
    opacity: 1;
    pointer-events: auto;
  }
  nav form:before{
    position: absolute;
    content: "";
    top: -13px;
    right: 0px;
    width: 0;
    height: 0;
    z-index: -1;
    border: 10px solid transparent;
    border-bottom-color: #1e232b;
    margin: -20px 0 0;
  }
  nav form:after{
    position: absolute;
    content: '';
    height: 60px;
    padding: 2px;
    background: #1e232b;
    border-radius: 2px;
    min-width: calc(100% + 20px);
    z-index: -2;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  nav .menu-icon{
    display: block;
  }
  nav .search-icon,
  nav .menu-icon span{
    display: block;
  }
  nav .menu-icon span.hide,
  nav .search-icon.hide{
    display: none;
  }
  nav .cancel-icon.show{
    display: block;
  }
} */
.content{
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
}
.content header{
  font-size: 30px;
  font-weight: 700;
}
.content .text{
  font-size: 30px;
  font-weight: 700;
}
.space{
  margin: 10px 0;
}
/* nav .logo.space{
  color: red;
  padding: 0 5px 0 0;
}
@media (max-width: 980px){
  nav .menu-icon,
  nav .cancel-icon,
  nav .search-icon{
    margin: 0 20px;
  }
  nav form{
    right: 30px;
  }
}
@media (max-width: 350px){
  nav .menu-icon,
  nav .cancel-icon,
  nav .search-icon{
    margin: 0 10px;
    font-size: 16px;
  }
} */
.content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.content header{
  font-size: 30px;
  font-weight: 700;
}
.content .text{
  font-size: 30px;
  font-weight: 700;
}
.content .space{
  margin: 10px 0;
}

/* .nav-items li:hover .dropdown-menu {
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  
}

.nav-items li:hover .dropdown-menu ul {
  display: block !important;
  margin: 20px 10px ;
  padding: 0 !important;
  text-align: center;
}

.dropdown-menu ul li {
  width: 170px;
  padding: 10px ;
}

@media only screen and (max-width: 320px)
{
  .dropdown-menu ul li {
    width: fit-content;
  padding: 0px 80px ;
  }

  .dropdown-menu{
    position: absolute;
    left: 300px;
  }

  .nav-items li:hover .dropdown-menu {
    display: block;
    position: absolute;
    left: 150px;
    top: 100%;
    
  }
}

@media only screen and (max-width: 375px){
  .dropdown-menu ul li {
    width: fit-content;
  padding: 0px 80px ;
  }

  .dropdown-menu{
    position: absolute;
    left: 300px;
  }

  .nav-items li:hover .dropdown-menu {
    display: block;
    position: absolute;
    left: 150px;
    top: 100%;
    
  }
} */


/* @media only screen and (max-width: 425px){
  .dropdown-menu ul li {
    width: fit-content;
  padding: 0px 80px ;
  }

  .dropdown-menu{
    position: absolute;
    left: 300px;
  }

  .nav-items li:hover .dropdown-menu {
    display: block;
    position: absolute;
    left: 150px;
    top: 100%;
    
  }
} */

/* @media only screen and (max-width: 768px) {
  .dropdown-menu ul li {
    width: fit-content;
  padding: 0px 80px ;
  }

  .dropdown-menu{
    position: absolute;
    left: 300px;
  }

  .nav-items li:hover .dropdown-menu {
    display: block;
    position: absolute;
    left: 150px;
    top: 100%;
    
  }
} */
/* @media only screen and (max-width: 1024px)
{
  .nav-items li:hover .dropdown-menu {
    display: block;
    position: absolute;
    left: 361px;
    top: 100%;
    
  }

} */



/* @media only screen and (max-width: 1440px)
{
  .nav-items li:hover .dropdown-menu {
    display: block;
    position: absolute;
    left: 570px;
    top: 100%;
    
  }

} */

/* 320px and below */
/* @media (max-width: 320px) {
    .nav-items li:hover .dropdown-menu {
      display: block;
      position: absolute;
      left: 1px;
      top: 100%;
      
    }
} */

/* 321px to 375px */
/* @media (min-width: 321px) and (max-width: 375px) {
  .nav-items li:hover .dropdown-menu {
    display: block;
    position: absolute;
    left: 1px;
    top: 100%;
    
  }
} */

/* 376px to 425px */
/* @media (min-width: 376px) and (max-width: 425px) {
  .nav-items li:hover .dropdown-menu {
    display: block;
    position: absolute;
    left: 1px;
    top: 100%;
    
  }
} */

/* 426px to 768px */
/* @media (min-width: 426px) and (max-width: 768px) {
  .nav-items li:hover .dropdown-menu {
    display: block;
    position: absolute;
    left: 165px;
    top: 100%;
    
  }
} */

/* 769px to 1024px */
/* @media (min-width: 769px) and (max-width: 1024px) {
  .nav-items li:hover .dropdown-menu {
    display: block;
    position: absolute;
    left: 358px;
    top: 100%;
    
  }
} */

/* 1025px to 1440px */
/* @media (min-width: 1025px) and (max-width: 1440px) {
  .nav-items li:hover .dropdown-menu {
    display: block;
    position: absolute;
    left: 568px;
    top: 100%;
    
  }
}

.dropdown-menu {
  display: none;
} */

.scroll-line{
  height: 2px;
  background: red;
  margin-bottom: -3px;
  width: 0%;
}




































































 .rf1 {
  width: 65%;
  margin: 0 auto;
 }

 .overlay {
  background-image: url(media/fp1.jpg);
  background-size: cover;
  background-position: center;
  min-height: 500px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  
 }

 .monk {
  background: #471e7c;
  min-height: 540px;
  transform: translateY(-150px);
  color: #f6f0ff;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
 }




svg {
  padding-bottom: 0 ;
  margin-bottom: 0;
  bottom: 100%;
  transform: translateY(50px);
}

.rf2 {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  align-items: center;
  justify-content: center;
  padding: 10px; 
  padding-top: 0;
  padding-bottom: 0;

  
}

.rf2 button {
  padding:8px 15px;
  background: #8769ac;
  color: #f6f0ff;
  border: none;
}

.active button {
  background: #7489C6 !;
}




.diva , .divb , .divc {
  padding: 40px 20px ;
  border: 4px solid #7489C6;
  min-height: 540px;
  border-radius: 10px;
}

.divb , .divc {
  display: none;
}
.blocks {
  padding: 30px;
  padding-top: 0;
  min-height: 540px !important;
}


#btn_diva {
  background-color: #7489C6 ;
}


.divb a {
  text-decoration: none;
  color: #7489C6 ;
  font-size: 1.2rem;
}

.diva button {
  background-color: #7489C6;
  color: #f6f0ff;
  padding: 7px 15px;
  border: none;
  border-radius: 30px;
}

.diva button a {
  text-decoration: none;
  color: #f6f0ff;
  text-transform: capitalize;
}

.rf0 {
  margin: 0 auto;
  text-align: center;
  color: #f6f0ff;
  width: 100%;
  height: 100vh;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}

.met {
  margin: 89px auto;
  text-align: center;
  color: #f6f0ff;
  width: 65% !important;
  height: 100vh;

  
  display: flex;
  align-items: center;
  flex-direction: column;
}

.met1 {
padding-top: 10%;
}


.met h1 {
  font-size: 50px; 
  margin: 0 auto;
}

.met h5 {
  margin: 0 auto;
}

.rf0 h1 {
  font-size: 90px;
}
.rf0 p {
  font-size: 20px;
  max-width: 675px;
  margin: 0 auto;
}

.rf3 {
  padding: 40px 20px;
  width: 65%;
  margin: 0 auto;
}


.get {
  padding: 60px 20px ;
}

.get button {
  padding: 13px 29px;
  background-color: #471e7c;
  color:#f6f0ff;
  border: none;
  border-radius: 40px;
  transition: .8s ease-in-out;
}

.get button:hover {
  background-color: #7489C6;
  scale: 1.2;
}

.get p {
  font-size: 20px;
  max-width: 675px;
  margin: 0 auto;
}

.get button a {
  text-decoration: none;
  color: #f6f0ff;
}



.scroll {
  height: 65px;
  width: 40px;
  border: 2px solid black;
  position: absolute;
  left: 50%;
  bottom: 150px;
  border-radius: 50px;
  cursor: pointer;
}

.scroll::before ,
.scroll::after {

  content: "";
  position: absolute;
  top: 20%;
  left: 50%;
  height: 10px;
  width: 10px;
  transform: translate(-50%, -100%) rotate(45deg);
  border: 2px solid black;
  border-top: transparent;
  border-left: transparent;
  animation: scroll-down 1s ease-in-out infinite;

}

.scroll::before {
  top: 30%;
  animation-delay: 0.3s;
  /* animation: scroll-down 1s ease-in-out infinite; */
}

@keyframes scroll-down {
  0% {
    /* top:20%; */
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    top: 90%;
    opacity: 0;
  }
}



#mang {
  margin-top: 100px;
}
#dcb {
  padding: 13px 55px !important;
  background-color: #7489C6;
  color: #f6f0ff;
  text-align: center;
  border: none;
  border-radius: 40px;
  margin-left: 30px;
  transition: 0.5s ease-in-out;
}

#divc button a {
  text-decoration: none;
  color: #f6f0ff;
}

#dcb:hover {
  color: #8769ac;
  scale: 1.1;
}



.wrapper{
  position: relative;
  height: 330px;
  width: 620px;
  perspective: 1000px;
  margin: 0 auto;
  margin-top: 50px;
  padding: 10px 30px;
}
.wrapper .flip-card{
  position: relative;
  height: 100%;
  width: 100%;
  background: #D48600;
  transform-style: preserve-3d;
  transition: all 3s ease-in-out;
}
.wrapper:hover .flip-card{
  transform: rotateY(180deg);
}
.flip-card .card{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  background: #471e7c;
  border-top: 2px solid #cc6600;
  border-left: 2px solid #cc6600;
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  backface-visibility: hidden;
  position: absolute;
  margin: 0 auto;
  padding: 10px 30px;
  color: #f6f0ff;
}
.card span.circle,
.card span.square{
  height: 110px;
  width: 110px;
  border: 10px solid #4d2600;
}
.card span.circle{
  border-radius: 50%;
}
.card span.triangle{
  position: relative;
  height: 0;
  width: 0;
  border-right: 60px solid transparent;
  border-left: 60px solid transparent;
  border-bottom: 110px solid #4d2600;
  margin-right: 16px;
}
.card span.triangle::before{
  content: "";
  position: absolute;
  height: 0;
  width: 0;
  left: -40px;
  top: 20px;
  border-right: 40px solid transparent;
  border-left: 40px solid transparent;
  border-bottom: 80px solid #D48600;
}
.back.card{
  transform: rotateY(180deg);
}
.back.card .home-logo{
  position: relative;
  height: 65px;
  width: 65px;
  border: 5px solid #4d2600;
  border-radius: 50%;
  margin-right: 16px;
}
.home-logo .icon{
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(6px);
  display: inline-block;
  height: 15px;
  width: 25px;
  background: #4d2600;
}
.home-logo .icon::before{
  content: "";
  position: absolute;
  top: -15px;
  height: 25px;
  width: 25px;
  background: #4d2600;
  transform: rotate(45deg);
}
.back.card .num{
  font-size: 25px;
  font-weight: 600;
  color: #4d2600;
}



@media screen and (max-width: 1445px) {

    .rf1 {
      width: 100%;
      padding: 15px 30px;
    }

}

@media screen and (max-width: 990px)  {
  .overlay svg {
    display: none;
  }


  .wrapper {
    width: 100%;
    padding: 10px 10px;
  }
}
@media screen and (max-width: 770px)  {
  .cd3  .button {
    width: 100% !important;
    padding: 5px auto;
    margin: 10px auto;
  }
  .cd2  .button {
    width: 100% !important;
    padding: 5px auto;
    margin: 10px auto;
  }
  .cd4  .button {
    width: 100% !important;
    padding: 5px auto;
    margin: 10px auto;
  }
}




























.button {
  position: relative;
  padding: 10px 22px;

  border: none;
  color: #fff;
  cursor: pointer;
  background-color: #7d2ae8;
  transition: all 0.2s ease;
}
.button:active {
  transform: scale(0.96);
}
.button:before,
.button:after {
  position: absolute;
  content: "";
  width: 150%;
  left: 50%;
  height: 100%;
  transform: translateX(-50%);
  z-index: -1000;
  background-repeat: no-repeat;
}
.button ,.animate::before {
  top: -70%;
  background-image: radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, transparent 20%, #7d2ae8 20%, transparent 30%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, transparent 10%, #7d2ae8 15%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%);
  background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%,
    10% 10%, 18% 18%;
  animation: greentopBubbles ease-in-out 0.6s forwards infinite;
}
@keyframes greentopBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%,
      40% 90%, 55% 90%, 70% 90%;
  }
  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%,
      50% 50%, 65% 20%, 90% 30%;
  }
  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%,
      50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
.button ,.button2 .animate::after {
  bottom: -70%;
  background-image: radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, transparent 10%, #7d2ae8 15%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%);
  background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 20% 20%, 18% 18%;
  animation: greenbottomBubbles ease-in-out 0.6s forwards infinite;
}
@keyframes greenbottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%,
      70% -10%, 70% 0%;
  }
  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%,
      105% 0%;
  }
  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%,
      110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}



































































.footer {
    background: #10182F;
    border-radius: 6px;
  }
  .footer .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3.5rem;
    padding: 60px;
  }
  .footer-row .footer-col h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
  }
  .footer-col .links {
    margin-top: 20px;
  }
  .footer-col .links li {
    list-style: none;
    margin-bottom: 10px;
  }
  .footer-col .links li a {
    text-decoration: none;
    color: #bfbfbf;
  }
  .footer-col .links li a:hover {
    color: #fff;
  }
  .footer-col p {
    margin: 20px 0;
    color: #bfbfbf;
    max-width: 300px;
  }
  .footer-col form {
    display: flex;
    gap: 5px;
  }
  .footer-col input {
    height: 40px;
    border-radius: 6px;
    background: none;
    width: 100%;
    outline: none;
    border: 1px solid #7489C6 ;
    caret-color: #fff;
    color: #fff;
    padding-left: 10px;
  }
  .footer-col input::placeholder {
    color: #ccc;
  }
   .footer-col form button {
    background: #fff;
    outline: none;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.2s ease;
  }
  .footer-col form button:hover {
    background: #cecccc;
  }
  .footer-col .icons {
    display: flex;
    margin-top: 30px;
    gap: 30px;
    cursor: pointer;
  }
  .footer-col .icons i {
    color: #afb6c7;
  }
  .footer-col .icons i:hover  {
    color: #fff;
  }
  @media (max-width: 768px) {
    .footer {
      position: relative;
      bottom: 0;
      left: 0;
      transform: none;
      width: 100%;
      border-radius: 0;
    }
    .footer .footer-row {
      padding: 20px;
      gap: 1rem;
    }
    .footer-col form {
      display: block;
    }
    .footer-col form :where(input, button) {
      width: 100%;
    }
  }

  .footer-row .footer-col h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
  }
  .footer-col .links {
    margin-top: 20px;
    padding-left: 0 !important;
  }